Default Template Arguments

If your compiler doesn't (completely) support default template arguments, then instead of writing:

vector<char *> v;

you will have to write:

vector<char *, allocator<char *> > v;

CodeWarrior Pro 3 no longer requires this work-around.